From 0d929af3baf18f7bd5d8426db180bc1489d726e1 Mon Sep 17 00:00:00 2001 From: Robert Lipe Date: Fri, 10 Nov 2017 21:39:45 -0600 Subject: [PATCH] First take at appveyor. Inspired by VLC. This should run qmake. --- appveyor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..3150455d6 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +version: 1.0.{build} + +environment: + matrix: + # MinGW + - name: win32 + platform: mingw + qt: 5.9\mingw53_32 + # MSVC x64 + #- name: win64 + # platform: amd64 + # qt: 5.9\msvc2015_64 + +init: + - if %platform%==mingw set PATH=%PATH:C:\Program Files\Git\usr\bin;=% + - if %platform%==mingw set PATH=C:\Qt\Tools\mingw530_32\bin;%PATH% + - set PATH=C:\Qt\%qt%\bin;%PATH% + - if not %platform%==mingw call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform% + +# Flesh out with amd64/msvc cases later. +build_script: + - qmake app.pro + - mingw32-make -- 2.30.2